bulma by Unknown

bulma by Unknown

Author:Unknown
Language: eng
Format: epub


<table class="table is-hoverable is-fullwidth"> <thead> <tr> <th>Order #</th> <th>Customer</th> <th>Date</th> <th>Books</th> <th>Status</th> <th class="has-text-right">Total</th> </tr> </thead> <tfoot> <tr> <th>Order #</th> <th>Customer</th> <th>Date</th> <th>Books</th> <th>Status</th> <th class="has-text-right">Total</th> </tr> </tfoot> <tbody> <tr *ngFor="let order of orders | filterBy: userFilter | orderBy: order"> <td> <a [routerLink]="['/orders-edit']" [queryParams]="{id: order.id }"><strong>{{ order.number }}</strong></a> </td> <td> <a [routerLink]="['/customers']">{{ order.customer }}</a> </td> <td>{{ order.date }}</td> <td>{{ order.books }}</td> <td> <span *ngIf="order.status === 'In progress'" class="tag is-warning">{{ order.status }}</span> <span *ngIf="order.status === 'Successful'" class="tag is-success">{{ order.status }}</span> </td> <td class="has-text-right">${{ order.total }}</td> </tr> </tbody> </table>

Pagination



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.